Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the orleans group with 4 updates #53

Merged
merged 2 commits into from
Jun 14, 2024
Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 13, 2024

Bumps the orleans group with 6 updates:

Package From To
Microsoft.Orleans.Runtime 7.2.1 7.2.6
Microsoft.Orleans.Serialization.Abstractions 7.2.1 7.2.6
Microsoft.Orleans.Serialization.Abstractions 7.2.1 8.1.0
Microsoft.Orleans.Client 7.2.1 8.1.0
Microsoft.Orleans.TestingHost 7.2.1 8.1.0
Microsoft.Orleans.Runtime 7.2.1 8.1.0

Updates Microsoft.Orleans.Runtime from 7.2.1 to 7.2.6

Release notes

Sourced from Microsoft.Orleans.Runtime's releases.

v7.2.6

What's Changed

New Contributors

Full Changelog: dotnet/orleans@v7.2.5...v7.2.6

v7.2.5

What's Changed

Full Changelog: dotnet/orleans@v7.2.4...v7.2.5

v7.2.4

What's Changed

New Contributors

Full Changelog: dotnet/orleans@v7.2.3...v7.2.4

v7.2.3

What's Changed

... (truncated)

Commits
  • 9aab3f7 Use GrainDirectoryCacheFactory to construct a IGrainDirectoryCache (#8844) (#...
  • 6981e70 Avoid over-counting stateless worker activations (#8886) (#8890)
  • c1d1640 Fix StatelessWorker MaxLocal for Orleans 7.x (#8887)
  • b7bf45f Always reset RuntimeContext to previous value after use (#8864) (#8870)
  • 597bcf0 Fix PooledBuffer serialization & initialize ActivationMigrationManager on s...
  • 57bafe7 [7.x] Avoid resending unchanged ClusterManifest to clients (#8772)
  • 4ab056f Identify F# single case discriminated unions as SumType (#8739) (#8757)
  • 6be49c1 Fix exception caused by a log message (#8558) (#8701) (#8756)
  • fbd92f4 Fix exception while collecting activations when activation.KeepAliveUntil = D...
  • 236b398 Correctly count number of items in LRU (#8742) (#8754)
  • Additional commits viewable in compare view

Updates Microsoft.Orleans.Serialization.Abstractions from 7.2.1 to 7.2.6

Release notes

Sourced from Microsoft.Orleans.Serialization.Abstractions's releases.

v7.2.6

What's Changed

New Contributors

Full Changelog: dotnet/orleans@v7.2.5...v7.2.6

v7.2.5

What's Changed

Full Changelog: dotnet/orleans@v7.2.4...v7.2.5

v7.2.4

What's Changed

New Contributors

Full Changelog: dotnet/orleans@v7.2.3...v7.2.4

v7.2.3

What's Changed

... (truncated)

Commits
  • 9aab3f7 Use GrainDirectoryCacheFactory to construct a IGrainDirectoryCache (#8844) (#...
  • 6981e70 Avoid over-counting stateless worker activations (#8886) (#8890)
  • c1d1640 Fix StatelessWorker MaxLocal for Orleans 7.x (#8887)
  • b7bf45f Always reset RuntimeContext to previous value after use (#8864) (#8870)
  • 597bcf0 Fix PooledBuffer serialization & initialize ActivationMigrationManager on s...
  • 57bafe7 [7.x] Avoid resending unchanged ClusterManifest to clients (#8772)
  • 4ab056f Identify F# single case discriminated unions as SumType (#8739) (#8757)
  • 6be49c1 Fix exception caused by a log message (#8558) (#8701) (#8756)
  • fbd92f4 Fix exception while collecting activations when activation.KeepAliveUntil = D...
  • 236b398 Correctly count number of items in LRU (#8742) (#8754)
  • Additional commits viewable in compare view

Updates Microsoft.Orleans.Serialization.Abstractions from 7.2.1 to 8.1.0

Release notes

Sourced from Microsoft.Orleans.Serialization.Abstractions's releases.

v7.2.6

What's Changed

New Contributors

Full Changelog: dotnet/orleans@v7.2.5...v7.2.6

v7.2.5

What's Changed

Full Changelog: dotnet/orleans@v7.2.4...v7.2.5

v7.2.4

What's Changed

New Contributors

Full Changelog: dotnet/orleans@v7.2.3...v7.2.4

v7.2.3

What's Changed

... (truncated)

Commits
  • 9aab3f7 Use GrainDirectoryCacheFactory to construct a IGrainDirectoryCache (#8844) (#...
  • 6981e70 Avoid over-counting stateless worker activations (#8886) (#8890)
  • c1d1640 Fix StatelessWorker MaxLocal for Orleans 7.x (#8887)
  • b7bf45f Always reset RuntimeContext to previous value after use (#8864) (#8870)
  • 597bcf0 Fix PooledBuffer serialization & initialize ActivationMigrationManager on s...
  • 57bafe7 [7.x] Avoid resending unchanged ClusterManifest to clients (#8772)
  • 4ab056f Identify F# single case discriminated unions as SumType (#8739) (#8757)
  • 6be49c1 Fix exception caused by a log message (#8558) (#8701) (#8756)
  • fbd92f4 Fix exception while collecting activations when activation.KeepAliveUntil = D...
  • 236b398 Correctly count number of items in LRU (#8742) (#8754)
  • Additional commits viewable in compare view

Updates Microsoft.Orleans.Client from 7.2.1 to 8.1.0

Release notes

Sourced from Microsoft.Orleans.Client's releases.

v8.1.0

New features

Integration with Aspire

This release includes initial integration with .NET Aspire, allowing you to configure an Orleans cluster in your Aspire app host, specifying the resources the cluster uses. For example, you can specify that an Azure Table will be used for cluster membership, an Azure Redis resource will be used for the grain directory, and an Azure Blob Storage resource will be used to store grain state. The integration currently supports Redis and Azure Table & Blob storage resources. Support for other resources will be added later.

In the app host project, an Orleans cluster can be declared using the AddOrleans method, and then configured with clustering, grain storage, grain directory, and other providers using methods on the returned builder:

var storage = builder.AddAzureStorage("storage");
var clusteringTable = storage.AddTables("clustering");
var defaultStorage = storage.AddBlobs("grainstate");
var cartStorage = builder.AddRedis("redis-cart");
var orleans = builder.AddOrleans("my-app")
.WithClustering(clusteringTable)
.WithGrainStorage("Default", grainStorage)
.WithGrainStorage("cart", cartStorage);
// Add a server project (also called "silo")
builder.AddProject<Projects.OrleansServer>("silo")
.WithReference(orleans);
// Add a project with a reference to the Orleans client
builder.AddProject<Projects.FrontEnd>("frontend")
.WithReference(orleans);

In the client and server projects, add Orleans to the host builder as usual.

// For an Orleans server:
builder.UseOrleans();
// Or, for an Orleans client:
builder.UseOrleansClient();

Orleans will read configuration created by your Aspire app host project and configure the providers specified therein. To allow Orleans to access the configured resources, add them as keyed services using the corresponding Aspire component:

builder.AddKeyedAzureTableService("clustering");
builder.AddKeyedAzureBlobService("grainstate");
builder.AddKeyedRedis("redis-cart");

Resource-optimized placement

Resource-optimized placement, enabled via the [ResourceOptimizedPlacement] attribute on a grain class, balances grains across hosts based on available memory and CPU usage. For more details, see the PR: dotnet/orleans#8815.

... (truncated)

Commits

Updates Microsoft.Orleans.Serialization.Abstractions from 7.2.1 to 8.1.0

Release notes

Sourced from Microsoft.Orleans.Serialization.Abstractions's releases.

v7.2.6

What's Changed

New Contributors

Full Changelog: dotnet/orleans@v7.2.5...v7.2.6

v7.2.5

What's Changed

Full Changelog: dotnet/orleans@v7.2.4...v7.2.5

v7.2.4

What's Changed

New Contributors

Full Changelog: dotnet/orleans@v7.2.3...v7.2.4

v7.2.3

What's Changed

... (truncated)

Commits
  • 9aab3f7 Use GrainDirectoryCacheFactory to construct a IGrainDirectoryCache (#8844) (#...
  • 6981e70 Avoid over-counting stateless worker activations (#8886) (#8890)
  • c1d1640 Fix StatelessWorker MaxLocal for Orleans 7.x (#8887)
  • b7bf45f Always reset RuntimeContext to previous value after use (#8864) (#8870)
  • 597bcf0 Fix PooledBuffer serialization & initialize ActivationMigrationManager on s...
  • 57bafe7 [7.x] Avoid resending unchanged ClusterManifest to clients (#8772)
  • 4ab056f Identify F# single case discriminated unions as SumType (#8739) (#8757)
  • 6be49c1 Fix exception caused by a log message (#8558) (#8701) (#8756)
  • fbd92f4 Fix exception while collecting activations when activation.KeepAliveUntil = D...
  • 236b398 Correctly count number of items in LRU (#8742) (#8754)
  • Additional commits viewable in compare view

Updates Microsoft.Orleans.TestingHost from 7.2.1 to 8.1.0

Release notes

Sourced from Microsoft.Orleans.TestingHost's releases.

v8.1.0

New features

Integration with Aspire

This release includes initial integration with .NET Aspire, allowing you to configure an Orleans cluster in your Aspire app host, specifying the resources the cluster uses. For example, you can specify that an Azure Table will be used for cluster membership, an Azure Redis resource will be used for the grain directory, and an Azure Blob Storage resource will be used to store grain state. The integration currently supports Redis and Azure Table & Blob storage resources. Support for other resources will be added later.

In the app host project, an Orleans cluster can be declared using the AddOrleans method, and then configured with clustering, grain storage, grain directory, and other providers using methods on the returned builder:

var storage = builder.AddAzureStorage("storage");
var clusteringTable = storage.AddTables("clustering");
var defaultStorage = storage.AddBlobs("grainstate");
var cartStorage = builder.AddRedis("redis-cart");
var orleans = builder.AddOrleans("my-app")
.WithClustering(clusteringTable)
.WithGrainStorage("Default", grainStorage)
.WithGrainStorage("cart", cartStorage);
// Add a server project (also called "silo")
builder.AddProject<Projects.OrleansServer>("silo")
.WithReference(orleans);
// Add a project with a reference to the Orleans client
builder.AddProject<Projects.FrontEnd>("frontend")
.WithReference(orleans);

In the client and server projects, add Orleans to the host builder as usual.

// For an Orleans server:
builder.UseOrleans();
// Or, for an Orleans client:
builder.UseOrleansClient();

Orleans will read configuration created by your Aspire app host project and configure the providers specified therein. To allow Orleans to access the configured resources, add them as keyed services using the corresponding Aspire component:

builder.AddKeyedAzureTableService("clustering");
builder.AddKeyedAzureBlobService("grainstate");
builder.AddKeyedRedis("redis-cart");

Resource-optimized placement

Resource-optimized placement, enabled via the [ResourceOptimizedPlacement] attribute on a grain class, balances grains across hosts based on available memory and CPU usage. For more details, see the PR: dotnet/orleans#8815.

... (truncated)

Commits

Updates Microsoft.Orleans.Runtime from 7.2.1 to 8.1.0

Release notes

Sourced from Microsoft.Orleans.Runtime's releases.

v7.2.6

What's Changed

New Contributors

Full Changelog: dotnet/orleans@v7.2.5...v7.2.6

v7.2.5

What's Changed

Full Changelog: dotnet/orleans@v7.2.4...v7.2.5

v7.2.4

What's Changed

New Contributors

Full Changelog: dotnet/orleans@v7.2.3...v7.2.4

v7.2.3

What's Changed

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jun 13, 2024
@dependabot dependabot bot force-pushed the dependabot/nuget/orleans-46ce095033 branch 2 times, most recently from 876b97c to 4ef9fe4 Compare June 14, 2024 12:11
Bumps the orleans group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [Microsoft.Orleans.Runtime](https://github.com/dotnet/orleans) | `7.2.1` | `7.2.6` |
| [Microsoft.Orleans.Serialization.Abstractions](https://github.com/dotnet/orleans) | `7.2.1` | `7.2.6` |
| [Microsoft.Orleans.Serialization.Abstractions](https://github.com/dotnet/orleans) | `7.2.1` | `8.1.0` |
| [Microsoft.Orleans.Client](https://github.com/dotnet/orleans) | `7.2.1` | `8.1.0` |
| [Microsoft.Orleans.TestingHost](https://github.com/dotnet/orleans) | `7.2.1` | `8.1.0` |
| [Microsoft.Orleans.Runtime](https://github.com/dotnet/orleans) | `7.2.1` | `8.1.0` |


Updates `Microsoft.Orleans.Runtime` from 7.2.1 to 7.2.6
- [Release notes](https://github.com/dotnet/orleans/releases)
- [Commits](dotnet/orleans@v7.2.1...v7.2.6)

Updates `Microsoft.Orleans.Serialization.Abstractions` from 7.2.1 to 7.2.6
- [Release notes](https://github.com/dotnet/orleans/releases)
- [Commits](dotnet/orleans@v7.2.1...v7.2.6)

Updates `Microsoft.Orleans.Serialization.Abstractions` from 7.2.1 to 8.1.0
- [Release notes](https://github.com/dotnet/orleans/releases)
- [Commits](dotnet/orleans@v7.2.1...v7.2.6)

Updates `Microsoft.Orleans.Client` from 7.2.1 to 8.1.0
- [Release notes](https://github.com/dotnet/orleans/releases)
- [Commits](dotnet/orleans@v7.2.1...v8.1.0)

Updates `Microsoft.Orleans.Serialization.Abstractions` from 7.2.1 to 8.1.0
- [Release notes](https://github.com/dotnet/orleans/releases)
- [Commits](dotnet/orleans@v7.2.1...v7.2.6)

Updates `Microsoft.Orleans.TestingHost` from 7.2.1 to 8.1.0
- [Release notes](https://github.com/dotnet/orleans/releases)
- [Commits](dotnet/orleans@v7.2.1...v8.1.0)

Updates `Microsoft.Orleans.Runtime` from 7.2.1 to 8.1.0
- [Release notes](https://github.com/dotnet/orleans/releases)
- [Commits](dotnet/orleans@v7.2.1...v7.2.6)

Updates `Microsoft.Orleans.Serialization.Abstractions` from 7.2.1 to 8.1.0
- [Release notes](https://github.com/dotnet/orleans/releases)
- [Commits](dotnet/orleans@v7.2.1...v7.2.6)

---
updated-dependencies:
- dependency-name: Microsoft.Orleans.Runtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: orleans
- dependency-name: Microsoft.Orleans.Serialization.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: orleans
- dependency-name: Microsoft.Orleans.Serialization.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: orleans
- dependency-name: Microsoft.Orleans.Client
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: orleans
- dependency-name: Microsoft.Orleans.Serialization.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: orleans
- dependency-name: Microsoft.Orleans.TestingHost
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: orleans
- dependency-name: Microsoft.Orleans.Runtime
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: orleans
- dependency-name: Microsoft.Orleans.Serialization.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: orleans
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/nuget/orleans-46ce095033 branch from 4ef9fe4 to a72c67e Compare June 14, 2024 12:16
@kzu kzu enabled auto-merge (rebase) June 14, 2024 12:40
@kzu kzu merged commit 5a77675 into main Jun 14, 2024
4 checks passed
@kzu kzu deleted the dependabot/nuget/orleans-46ce095033 branch June 14, 2024 12:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant